home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / GIMP 2.6.8 / gimp-2.6.8-i686-setup.exe / {app} / share / gimp / 2.0 / scripts / gradient-bevel-logo.scm < prev    next >
Text File  |  2009-12-15  |  6KB  |  149 lines

  1. ; GIMP - The GNU Image Manipulation Program
  2. ; Copyright (C) 1995 Spencer Kimball and Peter Mattis
  3. ;
  4. ; This program is free software; you can redistribute it and/or modify
  5. ; it under the terms of the GNU General Public License as published by
  6. ; the Free Software Foundation; either version 2 of the License, or
  7. ; (at your option) any later version.
  8. ;
  9. ; This program is distributed in the hope that it will be useful,
  10. ; but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. ; GNU General Public License for more details.
  13. ;
  14. ; You should have received a copy of the GNU General Public License
  15. ; along with this program; if not, write to the Free Software
  16. ; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17. ;
  18. ;  Gradient Bevel v0.1  04/08/98
  19. ;  by Brian McFee <keebler@wco.com>
  20. ;  Create cool glossy bevelly text
  21.  
  22. (define (apply-gradient-bevel-logo-effect img
  23.                                           logo-layer
  24.                                           b-size
  25.                                           bevel-height
  26.                                           bevel-width
  27.                                           bg-color)
  28.   (let* (
  29.         (width (car (gimp-drawable-width logo-layer)))
  30.         (height (car (gimp-drawable-height logo-layer)))
  31.         (indentX (+ b-size 12))
  32.         (indentY (+ b-size (/ height 8)))
  33.         (bg-layer (car (gimp-layer-new img width height RGBA-IMAGE "Background" 100 NORMAL-MODE)))
  34.         (blur-layer (car (gimp-layer-new img width height RGBA-IMAGE "Blur" 100 NORMAL-MODE)))
  35.         )
  36.  
  37.     (gimp-context-push)
  38.  
  39.     (script-fu-util-image-resize-from-layer img logo-layer)
  40.     (script-fu-util-image-add-layers img blur-layer bg-layer)
  41.  
  42.     (gimp-selection-all img)
  43.     (gimp-context-set-background bg-color)
  44.     (gimp-edit-fill bg-layer BACKGROUND-FILL)
  45.     (gimp-selection-none img)
  46.  
  47.     (gimp-layer-set-lock-alpha blur-layer TRUE)
  48.     (gimp-context-set-background '(255 255 255))
  49.     (gimp-selection-all img)
  50.     (gimp-edit-fill blur-layer BACKGROUND-FILL)
  51.     (gimp-edit-clear blur-layer)
  52.     (gimp-selection-none img)
  53.     (gimp-layer-set-lock-alpha blur-layer FALSE)
  54.     (gimp-selection-layer-alpha logo-layer)
  55.     (gimp-edit-fill blur-layer BACKGROUND-FILL)
  56.     (plug-in-gauss-rle RUN-NONINTERACTIVE img blur-layer bevel-width 1 1)
  57.     (gimp-selection-none img)
  58.     (gimp-context-set-background '(127 127 127))
  59.     (gimp-context-set-foreground '(255 255 255))
  60.     (gimp-layer-set-lock-alpha logo-layer TRUE)
  61.     (gimp-selection-all img)
  62.  
  63.     (gimp-edit-blend logo-layer FG-BG-RGB-MODE NORMAL-MODE
  64.                      GRADIENT-RADIAL 95 0 REPEAT-NONE FALSE
  65.                      FALSE 0 0 TRUE
  66.                      indentX indentY indentX (- height indentY))
  67.  
  68.     (gimp-selection-none img)
  69.     (gimp-layer-set-lock-alpha logo-layer FALSE)
  70.     (plug-in-bump-map RUN-NONINTERACTIVE img logo-layer blur-layer 115 bevel-height 5 0 0 0 15 TRUE FALSE 0)
  71.     (gimp-layer-set-offsets blur-layer 5 5)
  72.     (gimp-invert blur-layer)
  73.     (gimp-layer-set-opacity blur-layer 50.0)
  74.     (gimp-image-set-active-layer img logo-layer)
  75.  
  76.     (gimp-context-pop)
  77.   )
  78. )
  79.  
  80. (define (script-fu-gradient-bevel-logo-alpha img
  81.                                              logo-layer
  82.                                              b-size
  83.                                              bevel-height
  84.                                              bevel-width
  85.                                              bg-color)
  86.   (gimp-image-undo-group-start img)
  87.   (apply-gradient-bevel-logo-effect img logo-layer b-size
  88.                                     bevel-height bevel-width bg-color)
  89.   (gimp-image-undo-group-end img)
  90.   (gimp-displays-flush)
  91. )
  92.  
  93. (script-fu-register "script-fu-gradient-bevel-logo-alpha"
  94.   _"Gradient Beve_l..."
  95.   _"Add a shiny look and bevel effect to the selected region (or alpha)"
  96.   "Brian McFee <keebler@wco.com>"
  97.   "Brian McFee"
  98.   "April 1998"
  99.   "RGBA"
  100.   SF-IMAGE      "Image"                     0
  101.   SF-DRAWABLE   "Drawable"                  0
  102.   SF-ADJUSTMENT _"Border size (pixels)"     '(22 1 300 1 10 0 1)
  103.   SF-ADJUSTMENT _"Bevel height (sharpness)" '(40 1 250 1 10 0 1)
  104.   SF-ADJUSTMENT _"Bevel width"              '(2.5 1 200 1 10 1 1)
  105.   SF-COLOR      _"Background color"         "white"
  106. )
  107.  
  108. (script-fu-menu-register "script-fu-gradient-bevel-logo-alpha"
  109.                          "<Image>/Filters/Alpha to Logo")
  110.  
  111.  
  112. (define (script-fu-gradient-bevel-logo text
  113.                                        size
  114.                                        font
  115.                                        bevel-height
  116.                                        bevel-width
  117.                                        bg-color)
  118.   (let* (
  119.         (img (car (gimp-image-new 256 256 RGB)))
  120.         (border (/ size 4))
  121.         (text-layer (car (gimp-text-fontname img -1 0 0 text
  122.                                              border TRUE size PIXELS font)))
  123.         )
  124.     (gimp-image-undo-disable img)
  125.     (apply-gradient-bevel-logo-effect img text-layer border
  126.                                       bevel-height bevel-width bg-color)
  127.     (gimp-image-undo-enable img)
  128.     (gimp-display-new img)
  129.   )
  130. )
  131.  
  132. (script-fu-register "script-fu-gradient-bevel-logo"
  133.   _"Gradient Beve_l..."
  134.   _"Create a logo with a shiny look and beveled edges"
  135.   "Brian McFee <keebler@wco.com>"
  136.   "Brian McFee"
  137.   "April 1998"
  138.   ""
  139.   SF-STRING     _"Text"                     "Moo"
  140.   SF-ADJUSTMENT _"Font size (pixels)"       '(90 2 1000 1 10 0 1)
  141.   SF-FONT       _"Font"                     "Sans Bold"
  142.   SF-ADJUSTMENT _"Bevel height (sharpness)" '(40 1 250 1 10 0 1)
  143.   SF-ADJUSTMENT _"Bevel width"              '(2.5 1 200 1 10 1 1)
  144.   SF-COLOR      _"Background color"         "white"
  145. )
  146.  
  147. (script-fu-menu-register "script-fu-gradient-bevel-logo"
  148.                          "<Image>/File/Create/Logos")
  149.